home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zdps.c < prev    next >
C/C++ Source or Header  |  1997-04-21  |  4KB  |  155 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zdps.c */
  20. /* Display PostScript extensions */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsstate.h"
  25. #include "igstate.h"
  26. #include "iname.h"
  27. #include "store.h"
  28.  
  29. /* Import the user name table. */
  30. extern ref user_names;
  31.  
  32. /* ------ Graphics state ------ */
  33.  
  34. /* <screen_index> <x> <y> .setscreenphase - */
  35. private int
  36. zsetscreenphase(register os_ptr op)
  37. {    int code;
  38.     long x, y;
  39.  
  40.     check_type(op[-2], t_integer);
  41.     check_type(op[-1], t_integer);
  42.     check_type(*op, t_integer);
  43.     x = op[-1].value.intval;
  44.     y = op->value.intval;
  45.     if ( x != (int)x || y != (int)y ||
  46.          op[-2].value.intval < -1 ||
  47.          op[-2].value.intval >= gs_color_select_count
  48.        )
  49.       return_error(e_rangecheck);
  50.     code = gs_setscreenphase(igs, (int)x, (int)y,
  51.                  (gs_color_select_t)op[-2].value.intval);
  52.     if ( code >= 0 )
  53.       pop(3);
  54.     return code;
  55. }
  56.  
  57. /* <screen_index> .currentscreenphase <x> <y> */
  58. private int near
  59. zcurrentscreenphase(register os_ptr op)
  60. {    gs_int_point phase;
  61.     int code;
  62.  
  63.     check_type(*op, t_integer);
  64.     if ( op->value.intval < -1 ||
  65.          op->value.intval >= gs_color_select_count
  66.        )
  67.       return_error(e_rangecheck);
  68.     code = gs_currentscreenphase(igs, &phase,
  69.                      (gs_color_select_t)op->value.intval);
  70.     if ( code < 0 )
  71.       return code;
  72.     push(1);
  73.     make_int(op - 1, phase.x);
  74.     make_int(op, phase.y);
  75.     return 0;
  76. }
  77.  
  78. /* ------ View clipping ------ */
  79.  
  80. /* - viewclip - */
  81. private int
  82. zviewclip(register os_ptr op)
  83. {    /****** NYI ******/
  84.     return_error(e_undefined);
  85. }
  86.  
  87. /* - eoviewclip - */
  88. private int
  89. zeoviewclip(register os_ptr op)
  90. {    /****** NYI ******/
  91.     return_error(e_undefined);
  92. }
  93.  
  94. /* - initviewclip - */
  95. private int
  96. zinitviewclip(register os_ptr op)
  97. {    /****** NYI ******/
  98.     return_error(e_undefined);
  99. }
  100.  
  101. /* - viewclippath - */
  102. private int
  103. zviewclippath(register os_ptr op)
  104. {    /****** NYI ******/
  105.     return_error(e_undefined);
  106. }
  107.  
  108. /* ------ User names ------ */
  109.  
  110. /* <index> <name> defineusername - */
  111. private int
  112. zdefineusername(register os_ptr op)
  113. {    ref uname;
  114.  
  115.     check_type(op[-1], t_integer);
  116.     check_type(*op, t_name);
  117.     if ( array_get(&user_names, op[-1].value.intval, &uname) >= 0 )
  118.       { switch ( r_type(&uname) )
  119.           {
  120.           case t_null:
  121.         break;
  122.           case t_name:
  123.         if ( name_eq(&uname, op) )
  124.           goto ret;
  125.         /* falls through */
  126.           default:
  127.         return_error(e_invalidaccess);
  128.           }
  129.       }
  130.     else
  131.       { /* Expand the array. */
  132.         /****** NOT IMPLEMENTED YET ******/
  133.         return_error(e_rangecheck);
  134.       }
  135.     ref_assign(user_names.value.refs + op[-1].value.intval, op);
  136. ret:    pop(2);
  137.     return 0;
  138. }
  139.  
  140. /* ------ Initialization procedure ------ */
  141.  
  142. BEGIN_OP_DEFS(zdps_op_defs) {
  143.         /* Graphics state */
  144.     {"1.currentscreenphase", zcurrentscreenphase},
  145.     {"3.setscreenphase", zsetscreenphase},
  146.         /* View clipping */
  147.     {"0eoviewclip", zeoviewclip},
  148.     {"0initviewclip", zinitviewclip},
  149.     {"0viewclip", zviewclip},
  150.     {"0viewclippath", zviewclippath},
  151.         /* User names */
  152.     {"2defineusername", zdefineusername},
  153. END_OP_DEFS(0) }
  154.  
  155.